Setting up development environment for react native
If you are new to react native. This short article will help you to setup development environment. I assume you already have basic idea about Yarn, So in this article I'll be using Yarn to install packages
Install expo cli
yarn global add expo-cli
Create a project
expo init HelloWorld
Start the application
cd HelloWorld
yarn start
This will start development server. That's it